home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / libsrc~1.z / libsrc~1 / kill.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-28  |  205 b   |  9 lines

  1. #include "lib.h"
  2.  
  3. PUBLIC int kill(proc, sig)
  4. int proc;            /* which process is to be sent the signal */
  5. int sig;            /* signal number */
  6. {
  7.   return callm1(MM, KILL, proc, sig, 0, NIL_PTR, NIL_PTR, NIL_PTR);
  8. }
  9.